home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / netlog-1.02 / extract / extract.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-20  |  460 b   |  22 lines

  1. /*
  2.      extract - A network log processor
  3.      Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
  4.  
  5.      Please see the file `COPYING' for the complete copyright notice.
  6.  
  7. extract.h - 03/20/93
  8.  
  9. */
  10. struct ipaddr {
  11.      unsigned int addr:32;
  12. };
  13.  
  14. struct tcpsynout {
  15.      struct timeval tp;
  16.      unsigned long ipsrcaddr;
  17.      unsigned long ipdstaddr;
  18.      unsigned long tcpseq;
  19.      unsigned short tcpsrcport;
  20.      unsigned short tcpdstport;
  21. };
  22.